home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / AltKeyQ / amigacompq.h < prev    next >
C/C++ Source or Header  |  1996-09-26  |  1KB  |  32 lines

  1. /*****************************************************************************\
  2.  * amigacompq.h                                 DICE/LATTICE C/SAS C/AZTEC C *
  3.  *                 _                                                         *
  4.  *            _   // (c)1992 by "Quarky" Dieter Temme                        *
  5.  *            \\ // Version 1.1 of 25.8.92                                   *
  6.  *             \X/ --- Freeware --- ONLY AMIGA MAKES IT POSSIBLE             *
  7.  *                                                                           *
  8.  * this header file define a few constants for easier feature detection in   *
  9.  * C programs for the Amiga                                                  *
  10. \*****************************************************************************/
  11.  
  12. #ifdef LATTICE
  13.  #define PRAGMAS_
  14.  #define GETA4TYPE_
  15.  #define GETA4FUNC_ geta4()
  16. #endif
  17.  
  18. #ifdef _DCC
  19.  #define GETA4TYPE_ __geta4
  20.  #define GETA4FUNC_
  21.  #define min(x,y) (((x) < (y))? (x) : (y))
  22.  #define max(x,y) (((x) > (y))? (x) : (y))
  23. #endif
  24.  
  25. #ifdef AZTEC_C
  26.  #define PRAGMAS_
  27.  #define GETA4TYPE_
  28.  #define GETA4FUNC_ geta4()
  29.  #define min(x,y) (((x) < (y))? (x) : (y))
  30.  #define max(x,y) (((x) > (y))? (x) : (y))
  31. #endif
  32.